-
Notifications
You must be signed in to change notification settings - Fork 440
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add AE stage 1 #1360
add AE stage 1 #1360
Conversation
@@ -444,7 +444,7 @@ bool AE::hasSwitchBranchES(const SVFVar* var, s64_t succ, IntervalExeState& es) | |||
} | |||
while(!workList.empty()) { | |||
const SVFStmt* stmt = workList.pop(); | |||
if (const CopyStmt *copy = SVFUtil::dyn_cast<CopyStmt>(stmt)) { | |||
if (SVFUtil::dyn_cast<CopyStmt>(stmt)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
SVFUtil::isa(stmt)
and fix all others below
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks. it has been fixed.
using namespace SVF; | ||
using namespace SVFUtil; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why add this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks
I remove 'using namespace llvm'
and remain the SVFUtil in latest commit
svf/lib/Util/Options.cpp
Outdated
@@ -722,7 +722,7 @@ const Option<bool> Options::VtableInSVFIR( | |||
const Option<std::string> Options::ExtAPIPath( | |||
"extapi", | |||
"External API extapi.bc", | |||
"" | |||
"/Users/z5489735/2023/0106/SVF/extapi.bc" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks.
It is dirty code, I remove it.
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #1360 +/- ##
==========================================
+ Coverage 66.13% 67.83% +1.69%
==========================================
Files 227 253 +26
Lines 24648 27717 +3069
==========================================
+ Hits 16302 18802 +2500
- Misses 8346 8915 +569
|
svf/include/AE/Core/NumericLiteral.h
Outdated
#include "SVFIR/SVFType.h" | ||
#include "AbstractExecution/BoundedZ3Expr.h" | ||
#include "Util/GeneralType.h" | ||
#include "BoundedZ3Expr.h" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add folder name
clean some code
No description provided.